Uses of Class
org.eclipse.vtp.desktop.projects.core.ColumnType

Packages that use ColumnType
org.eclipse.vtp.desktop.projects.core   
org.eclipse.vtp.desktop.projects.core.internals   
 

Uses of ColumnType in org.eclipse.vtp.desktop.projects.core
 

Fields in org.eclipse.vtp.desktop.projects.core declared as ColumnType
static ColumnType ColumnType.BIGDECIMAL
          Definition of a typical 8 byte BIGDECIMAL column.
static ColumnType ColumnType.BIGNUMBER
          Definition of a typical 8 byte BIGNUMBER column.
static ColumnType ColumnType.BOOLEAN
          Definition of a typical BOOLEAN column.
static ColumnType ColumnType.DATETIME
          Definition of a typical DATETIME column.
static ColumnType ColumnType.DECIMAL
          Definition of a typical 4 byte DECIMAL column.
static ColumnType ColumnType.NUMBER
          Definition of a typical 4 byte NUMBER column.
static ColumnType ColumnType.TEXT
          Definition of a typical TEXT column.
static ColumnType ColumnType.VARCHAR
          Definition of a typical VARCHAR column with 45 characters.
 

Methods in org.eclipse.vtp.desktop.projects.core that return ColumnType
static ColumnType ColumnType.custom(java.lang.String typeName, int length, boolean nullable, boolean autoIncrement)
          Constructs a new ColumnType from the given type name, data length, nullable flag, and auto increment flag.
 ColumnType IDatabaseTableColumn.getColumnType()
           
static ColumnType ColumnType.load(org.w3c.dom.Element element)
          Constructs a new ColumnType from the information stored in the given XML DOM sturcture.
 

Uses of ColumnType in org.eclipse.vtp.desktop.projects.core.internals
 

Methods in org.eclipse.vtp.desktop.projects.core.internals that return ColumnType
 ColumnType DatabaseTableColumn.getColumnType()
           
 

Constructors in org.eclipse.vtp.desktop.projects.core.internals with parameters of type ColumnType
DatabaseTableColumn(DatabaseTable table, java.lang.String name, ColumnType columnType)
          Creates a new DatabaseTableColumn in the given database table with the provided name and column type definition.